home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Python / pystate.c < prev    next >
C/C++ Source or Header  |  1998-05-30  |  6KB  |  239 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Thread and interpreter state structures and their interfaces */
  33.  
  34. #include "Python.h"
  35.  
  36. #define ZAP(x) { \
  37.     PyObject *tmp = (PyObject *)(x); \
  38.     (x) = NULL; \
  39.     Py_XDECREF(tmp); \
  40. }
  41.  
  42.  
  43. static PyInterpreterState *interp_head = NULL;
  44.  
  45. static PyThreadState *current_tstate = NULL;
  46.  
  47.  
  48. PyInterpreterState *
  49. PyInterpreterState_New()
  50. {
  51.     PyInterpreterState *interp = PyMem_NEW(PyInterpreterState, 1);
  52.  
  53.     if (interp != NULL) {
  54.         interp->modules = NULL;
  55.         interp->sysdict = NULL;
  56.         interp->builtins = NULL;
  57.         interp->checkinterval = 10;
  58.         interp->tstate_head = NULL;
  59.  
  60.         interp->next = interp_head;
  61.         interp_head = interp;
  62.     }
  63.  
  64.     return interp;
  65. }
  66.  
  67.  
  68. void
  69. PyInterpreterState_Clear(interp)
  70.     PyInterpreterState *interp;
  71. {
  72.     PyThreadState *p;
  73.     for (p = interp->tstate_head; p != NULL; p = p->next)
  74.         PyThreadState_Clear(p);
  75.     ZAP(interp->modules);
  76.     ZAP(interp->sysdict);
  77.     ZAP(interp->builtins);
  78. }
  79.  
  80.  
  81. static void zapthreads Py_PROTO((PyInterpreterState *interp));
  82.  
  83. static void
  84. zapthreads(interp)
  85.     PyInterpreterState *interp;
  86. {
  87.     PyThreadState *p, *q;
  88.     p = interp->tstate_head;
  89.     while (p != NULL) {
  90.         q = p->next;
  91.         PyThreadState_Delete(p);
  92.         p = q;
  93.     }
  94. }
  95.  
  96.  
  97. void
  98. PyInterpreterState_Delete(interp)
  99.     PyInterpreterState *interp;
  100. {
  101.     PyInterpreterState **p;
  102.     zapthreads(interp);
  103.     for (p = &interp_head; ; p = &(*p)->next) {
  104.         if (*p == NULL)
  105.             Py_FatalError(
  106.                 "PyInterpreterState_Delete: invalid interp");
  107.         if (*p == interp)
  108.             break;
  109.     }
  110.     if (interp->tstate_head != NULL)
  111.         Py_FatalError("PyInterpreterState_Delete: remaining threads");
  112.     *p = interp->next;
  113.     PyMem_DEL(interp);
  114. }
  115.  
  116.  
  117. PyThreadState *
  118. PyThreadState_New(interp)
  119.     PyInterpreterState *interp;
  120. {
  121.     PyThreadState *tstate = PyMem_NEW(PyThreadState, 1);
  122.  
  123.     if (tstate != NULL) {
  124.         tstate->interp = interp;
  125.  
  126.         tstate->frame = NULL;
  127.         tstate->recursion_depth = 0;
  128.         tstate->ticker = 0;
  129.         tstate->tracing = 0;
  130.  
  131.         tstate->dict = NULL;
  132.  
  133.         tstate->curexc_type = NULL;
  134.         tstate->curexc_value = NULL;
  135.         tstate->curexc_traceback = NULL;
  136.  
  137.         tstate->exc_type = NULL;
  138.         tstate->exc_value = NULL;
  139.         tstate->exc_traceback = NULL;
  140.  
  141.         tstate->sys_profilefunc = NULL;
  142.         tstate->sys_tracefunc = NULL;
  143.  
  144.         tstate->next = interp->tstate_head;
  145.         interp->tstate_head = tstate;
  146.     }
  147.  
  148.     return tstate;
  149. }
  150.  
  151.  
  152. void
  153. PyThreadState_Clear(tstate)
  154.     PyThreadState *tstate;
  155. {
  156.     if (Py_VerboseFlag && tstate->frame != NULL)
  157.         fprintf(stderr,
  158.           "PyThreadState_Clear: warning: thread still has a frame\n");
  159.  
  160.     ZAP(tstate->frame);
  161.  
  162.     ZAP(tstate->dict);
  163.  
  164.     ZAP(tstate->curexc_type);
  165.     ZAP(tstate->curexc_value);
  166.     ZAP(tstate->curexc_traceback);
  167.  
  168.     ZAP(tstate->exc_type);
  169.     ZAP(tstate->exc_value);
  170.     ZAP(tstate->exc_traceback);
  171.  
  172.     ZAP(tstate->sys_profilefunc);
  173.     ZAP(tstate->sys_tracefunc);
  174. }
  175.  
  176.  
  177. void
  178. PyThreadState_Delete(tstate)
  179.     PyThreadState *tstate;
  180. {
  181.     PyInterpreterState *interp;
  182.     PyThreadState **p;
  183.     if (tstate == NULL)
  184.         Py_FatalError("PyThreadState_Delete: NULL tstate");
  185.     if (tstate == current_tstate)
  186.         Py_FatalError("PyThreadState_Delete: tstate is still current");
  187.     interp = tstate->interp;
  188.     if (interp == NULL)
  189.         Py_FatalError("PyThreadState_Delete: NULL interp");
  190.     for (p = &interp->tstate_head; ; p = &(*p)->next) {
  191.         if (*p == NULL)
  192.             Py_FatalError(
  193.                 "PyThreadState_Delete: invalid tstate");
  194.         if (*p == tstate)
  195.             break;
  196.     }
  197.     *p = tstate->next;
  198.     PyMem_DEL(tstate);
  199. }
  200.  
  201.  
  202. PyThreadState *
  203. PyThreadState_Get()
  204. {
  205.     if (current_tstate == NULL)
  206.         Py_FatalError("PyThreadState_Get: no current thread");
  207.  
  208.     return current_tstate;
  209. }
  210.  
  211.  
  212. PyThreadState *
  213. PyThreadState_Swap(new)
  214.     PyThreadState *new;
  215. {
  216.     PyThreadState *old = current_tstate;
  217.  
  218.     current_tstate = new;
  219.  
  220.     return old;
  221. }
  222.  
  223. /* An extension mechanism to store arbitrary additional per-thread state.
  224.    PyThreadState_GetDict() returns a dictionary that can be used to hold such
  225.    state; the caller should pick a unique key and store its state there.  If
  226.    PyThreadState_GetDict() returns NULL, an exception has been raised (most
  227.    likely MemoryError) and the caller should pass on the exception. */
  228.  
  229. PyObject *
  230. PyThreadState_GetDict()
  231. {
  232.     if (current_tstate == NULL)
  233.         Py_FatalError("PyThreadState_GetDict: no current thread");
  234.  
  235.     if (current_tstate->dict == NULL)
  236.         current_tstate->dict = PyDict_New();
  237.     return current_tstate->dict;
  238. }
  239.